home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-10-25 | 260 b | 10 lines |
- # xbin makefile for Microsoft C
-
- CL = cl
- DEBUGFLAGS = -Od -Zi -DDEBUG # options for debugging
- OPTFLAGS = -Ox # options for production
- CFLAGS = -DMSDOS -AS $(OPTFLAGS)
-
- xbin.exe: xbin.c
- $(CL) $(CFLAGS) xbin.c
-